home *** CD-ROM | disk | FTP | other *** search
/ EROS 2 / EROS 2.iso / mac / EROS vol.2 / EROS vol.DXR / 00903.ls < prev    next >
Encoding:
Text File  |  1995-12-20  |  401 b   |  13 lines

  1. on mouseUp
  2.   global tap, score, scNUM, TheEnd, range
  3.   if (tap <= TheEnd) and (tap > range) then
  4.     set score to 1 + score
  5.     set the text of cast scNUM to EMPTY & score & EMPTY
  6.     set the locV of sprite 10 to the locV of sprite 10 - 4
  7.   else
  8.     set score to score - 1
  9.     set the text of cast scNUM to EMPTY & score & EMPTY
  10.     set the locV of sprite 10 to the locV of sprite 10 + 4
  11.   end if
  12. end
  13.